Skip to content
/ dendrix Public

Conversation

@vic
Copy link
Owner

@vic vic commented Oct 16, 2025

No description provided.

Copilot AI review requested due to automatic review settings October 16, 2025 01:49
@vic vic merged commit 865f36b into main Oct 16, 2025
1 check failed
@vic vic deleted the hosts-example branch October 16, 2025 01:50
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

Adds a concrete example showing how to apply the same aspect across Linux (NixOS) and macOS, and slightly clarifies prior wording.

  • Clarifies sentence about where aspects are applied.
  • Adds a Nix code example demonstrating cross-OS reuse of the scrolling-desktop aspect.

Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.

instead of where they are applied.
instead of where they are specifically applied.

In the following example, the `scrolling-desktop` aspect is included accross different operating systems:
Copy link

Copilot AI Oct 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Corrected spelling of 'accross' to 'across'.

Suggested change
In the following example, the `scrolling-desktop` aspect is included accross different operating systems:
In the following example, the `scrolling-desktop` aspect is included across different operating systems:

Copilot uses AI. Check for mistakes.
instead of where they are specifically applied.

In the following example, the `scrolling-desktop` aspect is included accross different operating systems:
On Linux, `flake.modules.nixos.scrolling-destop` might enable [`niri`](https://variety4me.github.io/niri_docs/) and on MacOS, `flake.modules.darwin.scrolling-desktop` might enable [`PaperWM.spoon`](https://github.com/mogenson/PaperWM.spoon).
Copy link

Copilot AI Oct 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Corrected spelling of 'scrolling-destop' to 'scrolling-desktop'.

Suggested change
On Linux, `flake.modules.nixos.scrolling-destop` might enable [`niri`](https://variety4me.github.io/niri_docs/) and on MacOS, `flake.modules.darwin.scrolling-desktop` might enable [`PaperWM.spoon`](https://github.com/mogenson/PaperWM.spoon).
On Linux, `flake.modules.nixos.scrolling-desktop` might enable [`niri`](https://variety4me.github.io/niri_docs/) and on MacOS, `flake.modules.darwin.scrolling-desktop` might enable [`PaperWM.spoon`](https://github.com/mogenson/PaperWM.spoon).

Copilot uses AI. Check for mistakes.
instead of where they are specifically applied.

In the following example, the `scrolling-desktop` aspect is included accross different operating systems:
On Linux, `flake.modules.nixos.scrolling-destop` might enable [`niri`](https://variety4me.github.io/niri_docs/) and on MacOS, `flake.modules.darwin.scrolling-desktop` might enable [`PaperWM.spoon`](https://github.com/mogenson/PaperWM.spoon).
Copy link

Copilot AI Oct 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use Apple's correct casing: 'macOS' instead of 'MacOS'.

Suggested change
On Linux, `flake.modules.nixos.scrolling-destop` might enable [`niri`](https://variety4me.github.io/niri_docs/) and on MacOS, `flake.modules.darwin.scrolling-desktop` might enable [`PaperWM.spoon`](https://github.com/mogenson/PaperWM.spoon).
On Linux, `flake.modules.nixos.scrolling-destop` might enable [`niri`](https://variety4me.github.io/niri_docs/) and on macOS, `flake.modules.darwin.scrolling-desktop` might enable [`PaperWM.spoon`](https://github.com/mogenson/PaperWM.spoon).

Copilot uses AI. Check for mistakes.
{ inputs, ... }:
{
flake.nixosConfigurations.my-host = inputs.nixpkgs.lib.nixosSystem {
system = "aarm64-linux";
Copy link

Copilot AI Oct 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Invalid Nix system identifier; use 'aarch64-linux' instead of 'aarm64-linux'.

Suggested change
system = "aarm64-linux";
system = "aarch64-linux";

Copilot uses AI. Check for mistakes.
modules = with inputs.self.modules.nixos; [ ai ssh vpn mac-like-keyboard scrolling-desktop ];
};
flake.darwinConfigurations.my-host = inputs.nix-darwin.lib.darwinSystem {
system = "aarm64-darwin";
Copy link

Copilot AI Oct 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Invalid Nix system identifier; use 'aarch64-darwin' instead of 'aarm64-darwin'.

Suggested change
system = "aarm64-darwin";
system = "aarch64-darwin";

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants